home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Light ROM 1
/
LIGHT-ROM 1 (Amiga Library Services)(1994).iso
/
ffdisks
/
d963.lha
/
SIOD
/
scm
/
index.scm
< prev
next >
Wrap
Text File
|
1993-02-22
|
683b
|
21 lines
(define (insert-ord st l t)
(cond ((null? l) (append t (list st)))
((string>? st (car l))
(append t
(list st)
l))
(else (insert-ord st
(cdr l)
(append t
(list (car l)))))))
(define l nil)
(define (ord-obl)
(for-each (lambda (x)
(set! l
(insert-ord (symbol->string x)
l
nil)))
(oblist)))